home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 37 / IOPROG_37.ISO / SOFT / Multilizer.exe / disk1 / data1.cab / data1 / [Group9]VCL Source Standard / ivoldreg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-12  |  599 b   |  30 lines

  1. unit IvOldReg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10. {$IFDEF WIN32}
  11.  IvUMulti,
  12. {$ENDIF}
  13.   Classes, IvFiMult, IvEBinDi, IvEFiMul, IvEMulti;
  14.  
  15. procedure Register;
  16. begin
  17.   { The following components are for backward compability only }
  18.  
  19.   RegisterComponents('ML Old', [TIvFileDictionary]);
  20. {$IFDEF WIN32}
  21.   RegisterComponents('ML Old', [TIvUnicodeDictionary]);
  22. {$ENDIF}
  23.   RegisterComponents('ML Old', [TIvEmbeddedDictionary]);
  24.   RegisterComponents('ML Old', [TIvEmbeddedBinaryDictionary]);
  25.  
  26.   RegisterComponents('ML Old', [TIvExtendedTranslator]);
  27. end;
  28.  
  29. end.
  30.